home *** CD-ROM | disk | FTP | other *** search
/ Megahits 3 / Megahits 3 (1994)(GTI - Rhein-Main-Soft)(DE)[!].iso / module / utilities / midi / k1_ii_ed532.lha / ARP_Installation.Deutsch next >
AmigaDOS Script File  |  1991-12-26  |  2KB  |  69 lines

  1. .KEY dat 
  2. failat 100
  3. echo "Warnung: Dieses Installation läuft nur korrekt, wenn"
  4. echo "         Sie die Arp-Shell mit ihren Befehlen installiert haben !"
  5. echo "" 
  6. echo ""
  7. echo "Bitte Laufwerksnamen oder Verzeichnisnamen eingeben"
  8. echo "(z.B. DH0: oder DH1:musik/midi): " NOLINE 
  9. echo "" 
  10. read destdir
  11. dir="$(tackon $destdir kawai)"
  12. if not exists $dir
  13.     echo "Verzeichnis $dir wird angelegt"
  14.     makedir >nil: $dir
  15.  
  16.     if error
  17.         echo "Fehler bei der Pfadeingabe !"
  18.         quit
  19.     endif
  20. endif
  21.  
  22. makedir "$(tackon $dir SOUNDS)"
  23. makedir "$(tackon $dir BANKS)"
  24. makedir "$(tackon $dir MULTI)"
  25. makedir "$(tackon $dir DUMP)"   
  26.  
  27. echo "Kopiere nun alle Bänke"
  28. copy banks    "$(tackon $dir BANKS)"   all quiet
  29.  
  30. echo "Kopiere nun alle Multi-Patches"
  31. copy multi  "$(tackon $dir MULTI)"   all quiet
  32.  
  33. echo "Kopiere nun alle Dumps"
  34. copy dump    "$(tackon $dir DUMP)"    all quiet
  35.  
  36. echo "Kopiere nun benötigte Libraries"
  37. copy libs libs:                         all quiet    
  38.  
  39. echo "Kopiere nun Programm und sonstige Files"
  40. copy *     $dir                          quiet 
  41. copy /kawai.info    $destdir          quiet
  42.  
  43. if not exists libs:diskfont.library
  44.     echo "Warnung: libs:diskfont.library nicht vorhanden !"
  45. endif
  46.  
  47. if not exists libs:icon.library
  48.     echo "Warnung: libs:icon.library nicht vorhanden !"
  49. endif
  50.  
  51. if not exists l:ram-handler
  52.     echo "Warnung: l:ram-handler nicht vorhanden !"
  53. endif
  54.  
  55. if not exists l:port-handler
  56.     echo "Warnung: l:port-handler nicht vorhanden !"
  57. endif
  58.  
  59. if not exists devs:printer.device
  60.     echo "Warnung: devs:printer.device nicht vorhanden !"
  61. endif
  62.  
  63. if not exists devs:serial.device
  64.     echo "Warnung: devs:serial.device nicht vorhanden !"
  65. endif
  66.  
  67. echo "*N*N*NFertig !!!*N"
  68.  
  69.